home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / pcl4p51.zip / USE_DPMI.PAS < prev   
Pascal/Delphi Source File  |  1996-06-04  |  361b  |  19 lines

  1. unit USE_DPMI;
  2.  
  3. interface
  4.  
  5. uses WinAPI;
  6.  
  7. function  EnableVec(Irq, Vector  :Integer; ISR, Callback :LongInt) : LongInt;
  8. procedure DisableVec(Irq, Vector :Integer);
  9. function  DPMI_GetVersion : LongInt;
  10.  
  11. implementation
  12.  
  13. {$L USE_DPMI}
  14.  
  15. function  EnableVec  ; external;
  16. procedure DisableVec ; external;
  17. function  DPMI_GetVersion ; external;
  18.  
  19. end.